home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _IEErrorNotify.au3 < prev    next >
Text File  |  2007-09-08  |  465b  |  12 lines

  1. ; *******************************************************
  2. ; Example 1 - Check the current status of _IEErrorNotify, turn it off if on, on if off
  3. ; *******************************************************
  4. ;
  5. #include <IE.au3>
  6. If _IEErrorNotify () Then
  7.     MsgBox(0, "_IEErrorNotify Status", "Notification is ON, turning it OFF")
  8.     _IEErrorNotify (False)
  9. Else
  10.     MsgBox(0, "_IEErrorNotify Status", "Notification is OFF, turning it ON")
  11.     _IEErrorNotify (True)
  12. EndIf